Mouse Up Event

 
Description: This event is raised when the user releases the mouse button over the control.
   
Syntax: MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)

Remarks:

Button - Returns an integer value that corresponds to a button on the mouse

Value Description

1 Left button is pressed.
2 Right button is pressed.
4 Middle button is pressed.

Shift- Returns an integer value that corresponds to a control key press

Value Description

1 - SHIFT key is pressed.
2 - CTRL key is pressed.
4 - ALT key is pressed.

 

X - Returns the x coordinate of the mouse pointer

Y - Returns the y coordinate of the mouse pointer

PREVIOUS PAGE

 

Mouse Down Event

 
Description: This event is raised when the user presses the mouse button over the control.
   
Syntax: MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)

Remarks:

Button - Returns an integer value that corresponds to a button on the mouse

Value Description

1 Left button is pressed.
2 Right button is pressed.
4 Middle button is pressed.

Shift- Returns an integer value that corresponds to a control key press

Value Description

1 - SHIFT key is pressed.
2 - CTRL key is pressed.
4 - ALT key is pressed.

 

X - Returns the x coordinate of the mouse pointer

Y - Returns the y coordinate of the mouse pointer

PREVIOUS PAGE

 

Mouse Move Event  
Description: This event is raised when the user moves the mouse over the control.
   
Syntax: MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)

Remarks:

Button - Returns an integer value that corresponds to a button on the mouse

Value Description

1 Left button is pressed.
2 Right button is pressed.
4 Middle button is pressed.

Shift- Returns an integer value that corresponds to a control key press

Value Description

1 - SHIFT key is pressed.
2 - CTRL key is pressed.
4 - ALT key is pressed.

 

X - Returns the x coordinate of the mouse pointer

Y - Returns the y coordinate of the mouse pointer

 

Mouse Click Event

 
Description: This event is raised when the user clicks the control with the mouse button.
   
Syntax: MouseClick()